<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.mobile-menu {
    display: none;
    position: relative;
    width: 30px;
    outline: none;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.mobile-menu-line {
    position: absolute;
    left: 0;
    width: 100%;
    background: #272727;
    height: 3px;
    transition: all 0.2s ease-out;
    font-family: "myfont";

}

.mobile-menu:hover .mobile-menu-line {
    background: #777;
}

.mobile-menu-line-top {
    top: 3px;
}

.menu-active .mobile-menu-line-top {
    top: 50%;
    transform: rotate(45deg) translatey(-50%);
}

.mobile-menu-line-middle {
    top: 50%;
    transform: translatey(-50%);
}

.menu-active .mobile-menu-line-middle {
    width: 0;
    left: 50%;
    opacity: 0;

}

.mobile-menu-line-bottom {
    bottom: 3px;
}

.menu-active .mobile-menu-line-bottom {
    bottom: 50%;
    transform: rotate(-45deg) translatey(50%);
}

.nav-bar {
    align-items: center;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: row;
    font-family: sans-serif;
    padding: 10px 50px;
}

@media screen and (max-width: 1200px) {
    .nav-bar {
        display: none;
    }

    .logo {
        float: left;
        width: 50%;
    }

    .push-left {
        float: right;
        width: 50%;
        text-align: right;
    }
}
@media screen and (max-width: 798px) {
    .nav-bar {
        display: flex;
    }

    .logo {
        float: left;
        width: 50%;
    }

    .push-left {
        float: right;
        width: 50%;
        text-align: right;
    }
}

@media screen and (max-width: 1200px) {
    .mobile-menu {
        display: inline-block;
    }

}


.nav-menu {
    display: flex;
    position: fixed;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: all 0.25s ease-in;
    opacity: 0.8;
}

@media screen and (max-width: 1200px) {
    .nav-menu {
        background: rgba(255, 255, 255, 0.8);
        flex-direction: column;
        justify-content: center;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        transform: translatey(-100%);
        text-align: center;
    }

    .menu-active .nav-menu {
        transform: translatey(0%);
        opacity: 1;
    }
}

.nav-menu .menu-item a {
    color: #444444;
    display: block;
    line-height: 30px;
    margin: 0px 30px;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-menu .menu-item a:hover {
    color: #777777;
    text-decoration: underline;
}

@media screen and (max-width: 1200px) {
    .nav-menu .menu-item a {
        font-size: 20px;
        margin: 8px;
    }
}

.sub-nav {
    border: 1px solid #ccc;
    display: none;
    position: absolute;
    background-color: #fff;
    opacity: 0.6;
    padding: 5px 5px;
    list-style: none;
    width: 230px;
}

@media screen and (max-width: 1200px) {
    .sub-nav {
        position: relative;
        width: 100%;
        display: none;
        background-color: rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }
}

@media screen and (max-width: 450px) {
    .nav-menu {
        top: -200px;
    }
}

.nav__link:hover + .sub-nav {
    display: block;
}

.sub-nav:hover {
    display: block;
}</pre></body></html>